Delete program.The same program as the program GUID is deleted from the device.

Request

<?xml version="1.0" encoding="utf-8"?>

<sdk guid="##GUID">

    <in method="DeleteProgram">

        <xxx guid="##guid">

            <!--parameters-->

        </xxx>

    </in>

</sdk>

<!--

  Description :

    1. Sdk.guid is the guid value obtained through the negotiation of the SDK protocol version.

    2. in.method = DeleteProgram

    3. The in tag can contain multiple xxx child nodes.

    4. The value range of the xxx node is {"program", "area", "image", "video", "text", "clock"}

    5. program node and child nodes represent program information.

-->

Respond

<?xml version="1.0" encoding="utf-8"?>

<sdk guid="##GUID">

    <out method="DeleteProgram" result="##result"/>

</sdk>

<!--

  Description :

    1. Sdk.guid is the guid value obtained through the negotiation of the SDK protocol version.

    2. out.method = DeleteProgram

    3. out.result : (The error code refers to ErrorCode .)

-->